home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / xlisp2.1 / xldist01.zoo / lsp / tak.lsp < prev    next >
Encoding:
Lisp/Scheme  |  1990-11-09  |  168 b   |  10 lines

  1. (defun tak (x y z)
  2.   (if (not (< y x))
  3.       z
  4.       (tak (tak (1- x) y z)
  5.            (tak (1- y) z x)
  6.            (tak (1- z) x y))))
  7.  
  8. (defun dotak ()
  9.   (tak 18 12 6))
  10.